invalid escape sequence & six.moves not found fixed#179
invalid escape sequence & six.moves not found fixed#179punixcorn wants to merge 6 commits intolongld:masterfrom
Conversation
|
Hey @punixcorn, thanks for working on a fix for the reported issue. I had the same problem with Taking your approach, I added
Thanks! |
|
Hey @jimdiroffii , thanks for calling that out. I don't seem to have any more syntax errors on my end , but I will apply those changes to my fork. I am glad I was of help to you. |
in lib/utils.py and lib/nasm.py
|
Hey @punixcorn, there seems to be a small typo in the README you are trying to merge, for debian it's |
|
@CriimBow i saw these typos, i fixed and applied the changes to my fork but forgot about it here, i will fix that shortly, thanks for calling it out |
|
i got this error and i don't know if i should make it raw string For help, type "help". |
|
@L42yH4d3s, yes you should. pattern = re.compile(r'|'.join(JMPCALL).replace(r' ', r'\ ')) |
issue #177 fixes applied
1. fix SyntaxWarning
adding r to the strings or replace
b'...'withr'...', based on the warningeg
to make it raw string, pull request #178 fixes this.
2. fix
six.movesnot foundusing
and remove the
six.pyin thelib/so it uses the global ones and not the local one found in
lib